home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 25 / nsplit.zip / NSPLIT.DOC < prev    next >
Text File  |  1991-06-17  |  6KB  |  124 lines

  1.  
  2. N-Split  -=-  (c) 1991                                                      -1-
  3.  
  4.        ___      __          _____   _______    __        __   __________
  5.       |   \    |  |       /  ____| |   __  \  |  |      |  | |___    ___|
  6.       |     \  |  |  __  (  (__    |  |__|  | |  |      |  |     |  |
  7.       |  |\   \|  | |__|  \___  \  |   ____/  |  |      |  |     |  |
  8.       |  |  \     |       ____)  ) |  |       |  +----+ |  |     |  |
  9.       |__|    \___|      |______/  |__|       |_______| |__|     |__|
  10.  
  11.                                  Ver 1.3
  12.  
  13.  
  14.      This powerful program allows you to split files in a certain number of
  15. pieces or into a desired size so that you may copy it to floppy disks or
  16. various other purposes.  And it's shareware so if you want to go on using it
  17. (for more that a short trial period) you will have to register it.  I have not
  18. crippled this software in any way so that you might see its true potential.  I
  19. hope that you respect that and register this product.
  20.  
  21. Registration Cost : $10
  22.  
  23. What you get: Nothing really except having a clean conscience and knowing that
  24.               you are helping put a starving student through college.  You
  25.               must at least register at this level to use N-Split legally.
  26.  
  27.      To register, print and fill out the order form included ("NSORDER.FRM").
  28. If you don't have a printer, then just write all the information down on a
  29. piece of paper, I'm not that picky.
  30.  
  31. Documentation:
  32.  
  33. Syntax:  NSPLIT [/Pnnn | /Snnn | /Onnn] [[/F]<filename>] [/J[<filename>]] [/?]
  34.  
  35.          /Pnnn - number of parts to split up file.
  36.          /Snnn - maximum size of file.
  37.          /Onnn - Floppy Sizes:   1 = 1,457,664       2 = 1,213,952
  38.                                  3 =   730,112       4 =   362,496
  39.          /F    - name of file to split
  40.          /J    - join split files (enter /F for name if not XXXXXXX.000)
  41.  
  42.    (Number of parts and maximum size may not be used at the same time.)
  43.  
  44. And now for a more detailed explanation (examples at end):
  45.  
  46. - /Pnnn  :  nnn is replaced by a number and represents how many parts you
  47.             want to split the file up into.  If you run the program without
  48.             a /P, /S, and /O it will automatically split the file up into
  49.             two parts.
  50.  
  51. - /Snnn  :  nnn is replaced by the number of bytes you want in a file.  This
  52.             number represents the MAXIMUM number of bytes in each file.  It
  53.             will make all the files this size except for the last that will be
  54.             whatever is left over.
  55. - /Onnn  :  nnn is the disk option number you choose.  This is the most used
  56.             function since the main reason someone splits up a file is to put
  57.             it on a floppy disk.  The sizes available are:
  58.  
  59.             1 = 1,457,664   :   High density 3.5" floppy disk
  60.             2 = 1,213,952   :   High density 5.25" floppy disk
  61.             3 =   730,112   :   Double density 3.5" floppy disk
  62.             4 =   362,496   :   Double density 5.25" floppy disk
  63.  
  64. N-Split  -=-  (c) 1991                                                     -1-
  65.  
  66. - /F     :  The name of the file you want to split up, or if you are joining
  67.             files with the /J function, it is the destination filename.  You
  68.             do not really need the "/F", it is just to clarify things for you,
  69.             especially when using a destination name with the join function.
  70.             If you do use it, remember that there is no space between the /F
  71.             and the filename on the commandline.  If you do not supply a
  72.             filename, the program will ask you for one.
  73.  
  74. - /J     :  The name of the destination name you want for the files names
  75.             without the number extensions named with the /F function.  You
  76.             can use DOS's copy appending function to put the files back
  77.             together; N-SPLIT does not put any special information in the
  78.             split files.  The /J option is much easier though because if you
  79.             use the DOS copy you will have to type:
  80.                    COPY FILE.001+FILE.002+FILE.003+FILE.004 FILE.EXT
  81.             instead of:
  82.                    NSPLIT /JFILE.EXT FILE
  83.  
  84. - /?     :  Give a short help screen
  85.  
  86. Examples:
  87.  
  88.    NSPLIT FILE.EXT
  89.      - splits FILE.EXT into two parts
  90.  
  91.    NSPLIT /P5 FILE.EXT
  92.      - splits FILE.EXT into five parts
  93.  
  94.    NSPLIT /S100000 /FFILE.EXT
  95.      - splits FILE.EXT into pieces not bigger than 100000 bytes.  The /F is not
  96.        needed, but I put it here to show you how it would work if you used it.
  97.  
  98.    NSPLIT /O2 FILE.EXT
  99.      - splits FILE.EXT into files not bigger than a 1.2M 5.25" floppy disk
  100.  
  101.    NSPLIT /O4
  102.      - will prompt you for a file name and then split it into pieces that fit
  103.        onto a 360k 5.25" floppy disk
  104.  
  105.    NSPLIT
  106.      -will prompt you for a file name and then split it into two pieces
  107.  
  108.    NSPLIT /J FILE
  109.      - joins FILE.001, FILE.002, FILE.003... into a file called FILE.000
  110.  
  111.    NSPLIT /JFILE.EXT /FFILE
  112.      - joins FILE.001, FILE.002, FILE.003... into a file called FILE.EXT.
  113.        Again, the "/F" is not needed, it just helps remind you which are the
  114.        source files and what the destination filename is.
  115.  
  116.    If you have any questions or comments or something you would like to see
  117. done to this program in the future, just write to:
  118.  
  119.            Guyver Software Systems
  120.            4226 Colombo Dr.
  121.            San Jose, CA   95139-1111
  122.  
  123. Thank you for your support and I hope you enjoy this program.
  124.